From: Andrew Cooper Date: Wed, 15 Oct 2014 17:33:55 +0000 (+0100) Subject: tools/build: Fix root build target X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4166 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22?a=commitdiff_plain;h=0785dcc3d282598493cbbaa95d78943f15240e5a;p=xen.git tools/build: Fix root build target The root Makefile 'build' rule recurses into the tools directory and invokes the 'build' rule. However, the tools Makefile doesn't contain a 'build' rule, resulting in failure. Introduce a 'build' rule identical to the existing 'all' rule. Signed-off-by: Andrew Cooper CC: Ian Campbell CC: Ian Jackson CC: Wei Liu CC: Konrad Rzeszutek Wilk Acked-by: Ian Campbell --- diff --git a/tools/Makefile b/tools/Makefile index 543cd29a13..af9798a32b 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -54,8 +54,8 @@ export CROSS_SYS_ROOT # exported for check/funcs.sh export CROSS_BIN_PATH # exported for cross-install.sh endif -.PHONY: all -all: subdirs-all +.PHONY: build all +build all: subdirs-all .PHONY: install install: subdirs-install